home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
223_01
/
feof.c
< prev
next >
Wrap
Text File
|
1980-01-01
|
384b
|
19 lines
/*
** feof.c by F. A. Scacchitti 11/22/84
**
** Returns true only if end of file is reached.
**
*/
#include <stdio.h>
static char c;
feof(fd) int fd; {
c = *(fd + 40);
return(c == EOF ? TRUE : FALSE);
}